home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 69 / Cine Live 69.iso / pc / Data / Interface / videos.k < prev   
Encoding:
Text File  |  2003-04-30  |  3.3 KB  |  158 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000311,$00000120,$00000267,$000002B6,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000C8,$0000002A,$00000379,$000002FE,$00000025,$0000004B,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         omaprepmac3,
  17.         o14,
  18.         o25,
  19.         ommsomm6
  20.     ];
  21.     Events is [
  22.         cOnscreenEvent
  23.         with 
  24.             Commands is [
  25.                 cRunCommand
  26.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  27.             ];
  28.         end,
  29.         cKeyboardEvent
  30.         with Value is "+"; 
  31.             Commands is [
  32.                 cSetVolumeCommand
  33.                 with Flags is $00000004; Mode is ExecuteHigher; end
  34.             ];
  35.         end,
  36.         cKeyboardEvent
  37.         with Value is "-"; 
  38.             Commands is [
  39.                 cSetVolumeCommand
  40.                 with Flags is $00000004; Mode is ExecuteLower; end
  41.             ];
  42.         end,
  43.         cKeyboardEvent
  44.         with Value is "m"; 
  45.             Commands is [
  46.                 cRunCommand
  47.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  48.             ];
  49.         end
  50.     ];
  51. end;
  52.  
  53. object oMusic2 is cSound
  54. with 
  55.     Name is "Music"; 
  56.     
  57.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  58.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  59.     Looping is true; 
  60.     URL is "data/Sons/3.mp3"; URLOption is GetDiskURL; 
  61.     
  62. end;
  63.  
  64. object omaprepmac3 is cImage
  65. with 
  66.     Name is "maprepmac"; 
  67.     Enabled is false; 
  68.     X is -1; Y is -1; 
  69.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  70.     
  71.     URL is "data/Images/mapvid.jpg"; URLOption is GetDiskURL; 
  72.     
  73.     
  74. end;
  75.  
  76. object o14 is cBox
  77. with 
  78.     Flags is $00000150; 
  79.     release Editor:
  80.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  81.     end;
  82.     Name is "1"; 
  83.     Region is {$FFFF0028,$00000000,$0169031F,$00000000,$031F7FFF,$010601E8,$02E77FFF,$01690000,$01E802E7,$031F7FFF,$7FFF0000};
  84.     Cursor is oFingerCursor; 
  85.     X is -1; Y is 112; 
  86.     Width is 799; Height is 361; 
  87.     
  88.     
  89.     Events is [
  90.         cMouseUpEvent
  91.         with Flags is $00000004; Flag is true; 
  92.             Commands is [
  93.                 cBrowseCommand
  94.                 with Flags is $00000004; URL is "vid1.k"; end
  95.             ];
  96.         end
  97.     ];
  98. end;
  99.  
  100. object o25 is cBox
  101. with 
  102.     Flags is $00008001; 
  103.     release Editor:
  104.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  105.     end;
  106.     Name is "2"; 
  107.     Region is {$FFFF000A,$00010002,$00A100F5};
  108.     Cursor is oFingerCursor; 
  109.     X is 491; Y is 382; 
  110.     Width is 247; Height is 162; 
  111.     
  112.     
  113.     Events is [
  114.         cMouseUpEvent
  115.         with Flags is $00004004; Flag is true; 
  116.             Commands is [
  117.                 cBrowseCommand
  118.                 with Flags is $00004004; URL is "vid2.k"; end
  119.             ];
  120.         end
  121.     ];
  122. end;
  123.  
  124. object ommsomm6 is cImage
  125. with 
  126.     Flags is $00000150; 
  127.     Name is "mmsomm"; 
  128.     Shown is false; Cursor is oFingerCursor; 
  129.     X is 628; Y is 572; 
  130.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  131.     
  132.     URL is "data/Images/vid%20sommaire.jpg"; URLOption is GetDiskURL; 
  133.     
  134.     
  135.     Events is [
  136.         cMouseEnterEvent
  137.         with Flags is $00000004; 
  138.             Commands is [
  139.                 cShowCommand
  140.                 with Flags is $00000004; Target is oTargetSelf; end
  141.             ];
  142.         end,
  143.         cMouseLeaveEvent
  144.         with Flags is $00000004; 
  145.             Commands is [
  146.                 cShowCommand
  147.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  148.             ];
  149.         end,
  150.         cMouseUpEvent
  151.         with Flags is $00000004; Flag is true; 
  152.             Commands is [
  153.                 cBrowseCommand
  154.                 with Flags is $00000004; URL is "sommaire.k"; end
  155.             ];
  156.         end
  157.     ];
  158. end;